/* LEVÉ KATEGORIE – CECH HRÁČŮ */

/* Celý box kategorií */
.sidebar,
.sidebar .box,
.sidebar .box-categories,
.sidebar .categories {
    background: #ffffff !important;
}

/* Nadpis Kategorie */
.sidebar .box-heading,
.sidebar .box h4,
.sidebar .box-categories h4 {
    background: #ffffff !important;
    color: #c8a75d !important;
    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    border-bottom: 1px solid #e5e5e5 !important;
}

/* Reset seznamu */
.sidebar .categories ul,
.sidebar .box-categories ul {
    background: #ffffff !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Reset položek */
.sidebar .categories li,
.sidebar .box-categories li {
    background: #ffffff !important;
    list-style: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Odstranění teček */
.sidebar .categories li::before,
.sidebar .categories li::after,
.sidebar .box-categories li::before,
.sidebar .box-categories li::after {
    display: none !important;
    content: none !important;
}

/* Odstranění šipek / ikon rozbalování */
.sidebar .categories .toggle-button,
.sidebar .categories .submenu-arrow,
.sidebar .categories .caret,
.sidebar .categories .expander,
.sidebar .categories .fa,
.sidebar .box-categories .toggle-button,
.sidebar .box-categories .submenu-arrow,
.sidebar .box-categories .caret,
.sidebar .box-categories .expander,
.sidebar .box-categories .fa,
.sidebar .categories span::before,
.sidebar .categories span::after,
.sidebar .box-categories span::before,
.sidebar .box-categories span::after {
    display: none !important;
    content: none !important;
}

/* Hlavní kategorie */
.sidebar .categories > ul > li > a,
.sidebar .box-categories > ul > li > a {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;

    position: relative !important;

    background: #ffffff !important;
    color: #c8a75d !important;

    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;

    padding: 9px 6px !important;
    text-decoration: none !important;
    border-radius: 8px !important;
}

/* Hover hlavní kategorie */
.sidebar .categories > ul > li > a:hover,
.sidebar .box-categories > ul > li > a:hover {
    color: #9f7627 !important;
    background: rgba(200, 167, 93, 0.10) !important;
}

/* Červená linka pod hlavní kategorií */
.sidebar .categories > ul > li > a::after,
.sidebar .box-categories > ul > li > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #8b0000;

    transform: translateX(-50%);
    transition: width 0.35s ease;
}

.sidebar .categories > ul > li > a:hover::after,
.sidebar .box-categories > ul > li > a:hover::after {
    width: 85%;
}

/* Obrázek před hlavní kategorií */
.sidebar .categories > ul > li > a::before,
.sidebar .box-categories > ul > li > a::before {
    content: "";
    display: inline-block;
    width: 36px;
    height: 36px;
    min-width: 36px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

/* VLASTNÍ OBRÁZKY HLAVNÍCH KATEGORIÍ */

.sidebar a[href*="spolecenske-hry"]::before {
    background-image: url("https://www.cechhracu.cz/user/documents/upload/Nová složka/kostka.png");
}

.sidebar a[href*="hry-na-hrdiny"]::before {
    background-image: url("https://www.cechhracu.cz/user/documents/upload/Nová složka/97f0d91d-4dfd-4c3f-b985-f57cf34b0cad.png");
}

.sidebar a[href*="sberatelske-karetni-hry"]::before {
    background-image: url("https://www.cechhracu.cz/user/documents/upload/Nová složka/karty.png");
}

.sidebar a[href*="herni-vybava"]::before {
    background-image: url("https://www.cechhracu.cz/user/documents/upload/Nová složka/asi dnd.png");
}

.sidebar a[href*="literatura"]::before {
    background-image: url("https://www.cechhracu.cz/user/documents/upload/Nová složka/literatura.png");
}

.sidebar a[href*="merch"]::before {
    background-image: url("https://www.cechhracu.cz/user/documents/upload/Nová složka/1b0e2a1b-46ac-44c6-b8f3-36d5439e2f34.png");
}

/* Podkategorie – bez obrázků */
.sidebar .categories ul ul a::before,
.sidebar .box-categories ul ul a::before {
    display: none !important;
    content: none !important;
    background-image: none !important;
}

/* Podkategorie text */
.sidebar .categories ul ul a,
.sidebar .box-categories ul ul a {
    display: block !important;
    position: relative !important;

    color: #222222 !important;

    font-family: Georgia, "Times New Roman", serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;

    padding: 7px 6px 7px 48px !important;
    text-decoration: none !important;
    background: #ffffff !important;
}

/* Červená linka pod podkategoriemi */
.sidebar .categories ul ul a::after,
.sidebar .box-categories ul ul a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;

    width: 0;
    height: 1px;

    background: #8b0000;

    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.sidebar .categories ul ul a:hover::after,
.sidebar .box-categories ul ul a:hover::after {
    width: 75%;
}

/* Hover podkategorií */
.sidebar .categories ul ul a:hover,
.sidebar .box-categories ul ul a:hover {
    color: #c8a75d !important;
    background: rgba(200, 167, 93, 0.08) !important;
    border-radius: 8px !important;
}